home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / decorating_phebes_room.swf / scripts / DefineButton2_243 / BUTTONCONDACTION on(release).as
Text File  |  2007-09-26  |  248b  |  14 lines

  1. on(release){
  2.    if(btn_wall._currentframe < btn_wall._totalframes)
  3.    {
  4.       btn_wall.nextFrame();
  5.       btn_floor.nextFrame();
  6.    }
  7.    else
  8.    {
  9.       btn_wall.gotoAndStop(1);
  10.       btn_floor.gotoAndStop(1);
  11.    }
  12.    initButtons();
  13. }
  14.